import ChromeSlot from '@akinon/pz-theme/src/chrome/chrome-slot'; import { PLACEHOLDER_SLUGS } from '@akinon/pz-theme/src/chrome/placeholder-slugs'; /** * The forgot-password body, handed over the same way as the login screen: the * slot is an async server component and the page is a client one. This route * holds a single page, so it needs no route group to keep the composition off * a sibling screen. * * Brands that route it at `/auth/forgot-password` instead resolve to the same * placeholder, so one composition serves both spellings. */ export default function ForgotPasswordLayout({ children }: { children: React.ReactNode; }) { return ( ); }